@extends('layouts.app') @section('content')

Photographer List

@if (session('success'))
{{ session('success') }}
@endif
+ Add New Photographer
@foreach($photographers as $photographer) @endforeach
Name Email Actions
{{ $photographer->name }} {{ $photographer->email }}
@csrf @method('DELETE')
@endsection