@extends('dashboard.base') @section('css') @endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($projects as $project)

{{ $project->project_title }}

Contract - {{ $project->contract }} , Posted {{ Carbon\Carbon::parse($project->created_at)->diffForHumans()}}
{{ $project->engineering }}
{{ $project->summary }}
@endforeach
{{-- Apply Project Modal --}} {{-- Apply Project Modal End --}} @endsection @section('javascript') @endsection