@extends('layouts.app') @section('content')
@include('frontend/artistSummarHeader')
@forelse($acts as $act) @empty @endforelse
S.No Act Name Status Created At Action
{{$i}} {{$act->act_name}} @if($act->status == 0) Disabled @else Enabled @endif {{date('F j, Y, g:i a', strtotime($act->created_at))}}
No record found
{!! $acts->links() !!}
@endsection