@extends('admin.layouts.app') @section('content')
Dashboard / Projects
{{-- FIXED --}} Add Project
@if(session('success'))
{{ session('success') }}
@endif
@forelse($projects as $key => $project) @empty @endforelse
Sr No. Title Description Image Location Status Type Action
{{ $key + 1 }} {{ $project->title }} {{ $project->description }} @if($project->image) @else No Image @endif {{ $project->location }} {{ ucfirst(str_replace('_', ' ', $project->type)) }} {{ ucfirst($project->status) }} {{-- EDIT --}} Edit {{-- DELETE --}}
@csrf @method('DELETE')
No projects found.
@endsection