All Offices

New Office
@if (session('success'))
{{ session('success') }}
@endif
@forelse ($offices as $office) @empty @endforelse
# Name (English) Name (Amharic) Name (Oromo) Actions
{{ $loop->iteration }} {{ $office->name['en'] ?? '-' }} {{ $office->name['am'] ?? '-' }} {{ $office->name['or'] ?? '-' }} {{-- Edit --}} Edit
No offices found.
{{-- Pagination --}} @if($offices->hasPages())
{{ $offices->withQueryString()->links('pagination::bootstrap-5') }}
@endif