@extends('admin.layout') @section('content')

Projects

+ Add Project
@if(session('success'))
{{ session('success') }}
@endif
@forelse($projects as $project) @empty @endforelse
# Title Location Status Action
{{ $loop->iteration }} {{ $project->title }} {{ $project->location }} @if($project->status) Active @else Inactive @endif Edit
@csrf @method('DELETE')
No projects found
@endsection