@extends('backends.layouts.master_layout') @section('title','Notices') @section('page_heading','Notices') @section('content')
@include('backends.includes.notification')
@auth_access('store_notice') Add @end_auth_access
@foreach($datas as $k => $data) @endforeach
SL Notice Type Heading Message Status User Action
{{$k+1}} {{$data->type}} {{$data->heading}} {{$data->message}} @if($data->is_active == 0) Disabled @else Enabled @endif {{$data->user_id != "" ? $data->user_id: 'N/A'}} @auth_access('update_notice') @end_auth_access @auth_access('destroy_notice') @end_auth_access
{{$datas->appends(['search'=>$search])}}
@include('.backends.includes.delete-modal') @endsection