@extends('layout.master') @section('css') @endsection @section('main_content')

Roles table

@foreach ($roles as $key => $role) @endforeach
No Name Action
{{ $role->id }} {{ $role->name }} Show Edit {!! Form::open(['method' => 'DELETE','route' => ['roles.destroy', $role->id],'style'=>'display:inline']) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger btn-sm']) !!} {!! Form::close() !!}
No Name Action
@endsection @section('scripts') @endsection