@extends("template.layouts.simple.master") @section('content')
@include("master.notification")
@can("add new news") @endcan
@foreach($details as $s) @php $date = \Carbon\Carbon::createFromFormat('Y-m-d', $s->scheduling_date_time)->format("d F Y"); @endphp @endforeach
Sno Title Description Active / In-Active Action
{{$loop->iteration}}. {{$s->title}} {{$date}}
{{$s->description}}
{{$s->description}}
@if($s->status == 1)
Active
@else
In-Active
@endif
@can("edit news details") $s->id])}}"> @endcan @can("delete news details") @endcan
@endsection {{--@include("")--}} @section("scripts") @include("master.notification_show_hide") @endsection