@extends('admin.admin_master') @section('title') Notice List @endsection @section('content')
@if (session('success'))
Success! {{ Session::get('success') }}
@endif

All Notice Create Notice

@foreach ($notices as $key => $row) @endforeach
Sl Notice Date Notice
{{ $key+1 }} {{ $row->date }} {{ Str::limit($row->description,50) }}
@endsection