@extends('dashboard_layout') @section('content')

Work Gallery

@if(Session::has('submit-status'))
{{ Session::get('submit-status') }}
@endif

 

@foreach($all_work AS $work) @endforeach
Image Title Description Status Action
@if($work->image && file_exists(public_path() ."/upload/work_image/resize/".$work->image)) {{$work->title}} @else @endif {{$work->title}} {{$work->description}} @if($work->status == '1') Active @else In-Active @endif
@endsection