@extends($layout) @section('content') @php $showClosedProjects = $showClosedProjects ?? false; @endphp
{!! $tpl->displayNotification() !!}
 
{!! __('link.new_project') !!}
@foreach ($allProjects as $row) @endforeach
{!! __('label.project_name') !!} {!! __('label.client_product') !!} {!! __('label.project_type') !!} {!! __('label.project_state') !!} {!! __('label.hourly_budget') !!} {!! __('label.budget_cost') !!}
{{ $row['name'] }} {{ $row['clientName'] }} {{ $row['type'] }} @if ($row['state'] == -1) {!! __('label.closed') !!} @else {!! __('label.open') !!} @endif {{ $row['hourBudget'] }} {{ $row['dollarBudget'] }}
@once @push('scripts') @endpush @endonce @endsection