-
Dashboard
- {{'All Activity'}}
@if ( ($currentUserRole == 'admin') )
Add Activity
@endif
@if(Session::has('success'))
×
{!! session('success') !!}
@endif
S.no. |
Title |
Month |
Year |
Actions |
{{ csrf_field() }}
@php $ctr = 0 @endphp
@if( isset($activity) && count($activity) > 0 )
@foreach($activity as $k => $v)
{{ ++$ctr }} |
{{ ( ( strlen($v['a_project_name']) > 50 ) ? ucfirst( substr($v['a_project_name'], 0, 48) ).'...' : ucfirst($v['a_project_name']) ) }} |
{{ $v['a_month'] }} |
{{ $v['a_year'] }} |
@if ( ($currentUserRole == 'admin') )
|
@endif
@if ( ($currentUserRole == 'admin'))
@if( $v['status']==0 )
|
@else
|
@endif
@endif
|
@endforeach
@endif
@if( count($activity)==0 )
No records found
@endif
@if(count($activity) > 0)
{{ $activity->links() }}
@endif