@extends('admin.layouts.master') @section('content')
Centre of Excellence
@if (Session::has('message'))
{{ Session::get('message') }}
@endif @foreach($departments as $department) @endforeach
ID Title description image Action
{{ $department->id }} {{ $department->title }} {{ str_limit(strip_tags($department->details), 130) }} Edit {!! Form::open([ 'method' => 'Delete', 'url' => ['/department', $department->id]]) !!} {!! Form::submit('Delete',['class'=>'btn btn-sm btn-danger']) !!} {!! Form::close() !!}