@extends('layouts.admin') @section('page-title', 'Projects') @section('content')
All Projects
@forelse($projects as $p) @empty @endforelse
Title Image Client Name Location Category Status Actions
{{ $p->title }} {{ $p->title }} {{ $p->client_name }} {{ $p->location }} @php $project_type = json_decode($p->project_type, true) ?? []; @endphp {{ implode(', ', $project_type) }} {{ ucfirst($p->status) }}
@csrf @method('DELETE')
No projects found.
@endsection