@extends('cms.application') @section('content')
{{ label('lbl_tba_projects') }}
@if($ppp_project_list->count() == 0)
@else @foreach($ppp_project_list as $key => $tba_projects) @endforeach
Photo Title Created On Project Stage Status Option
@php echo wordwrap($tba_projects->title,60,"
") @endphp
{{ date_format(date_create($tba_projects->created_at), 'dS M Y, H:i:s') }} {{ ($tba_projects->project_stage == 1)? 'Completed' : (($tba_projects->project_stage == 2)? 'Ongoing' : 'UpComing') }} @if ($tba_projects->active) Published @else UnPublished @endif
View & Edit {!! link_to_route('cms.tba_projects.destroy', "delete", array($tba_projects->id), array('data-method' => 'delete', 'data-confirm' => 'Are you Sure' ,'class' => 'label theme-b bg-danger text-white f-12')) !!}
{{-- {!! $ppp_project_list->render() !!} --}}
@endif
@stop