@extends('admin.layouts.app') @section('title', 'Bulletin') @section('content')
| Name | Details | Actions |
|---|---|---|
| {{$c->name}} | {{$c->details}} | @can('bulletine-edit') Edit @endcan @can('bulletine-delete') {!! Form::open(['method' => 'DELETE','route' => ['bulletine.destroy', $c->id],'style'=>'display:inline', 'onsubmit' => 'return confirm("Are you sure you want to delete this Record?")']) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger btn-sm']) !!} {!! Form::close() !!} @endcan |