Manage Charities
Create Charity
@if(session('success'))
{{ session('success') }}
@endif
@if($charities->isEmpty())
No charities found. Click the "Create Charity" button to add one.
@else
| Logo |
Name |
Status |
Sort Order |
Featured |
Website |
Actions |
@foreach($charities as $charity)
@if($charity->logo && Storage::disk('public')->exists($charity->logo))
@else
@endif
|
{{ $charity->name }}
{{ $charity->slug }}
|
{{ ucfirst($charity->status) }}
|
{{ $charity->sort_order }} |
@if($charity->is_featured)
Featured
@else
-
@endif
|
@if($charity->website_url)
@else
-
@endif
|
|
@endforeach
@if($charities->hasPages())
{{ $charities->links() }}
@endif
@endif