@extends('layouts.app') @section('title','Projects') @section('page_title','Projects') @section('content') @if(session('success'))
{{ session('success') }}
@endif
Add Project
@foreach($projects as $project) @endforeach
Code Project Type Cost Payment Received Pending Delivery Status Action
{{ $project->project_code }} {{ $project->project_name }} {{ $project->project_type }} {{ $project->project_cost }} {{ ucwords(str_replace('_',' ', $project->payment_type)) }} {{ $project->currency }} {{ $project->received_amount }} {{ $project->currency }} {{ $project->pending_amount }} {{ $project->expected_delivery }} {{ ucwords(str_replace('_',' ', $project->status)) }} View Edit
@endsection