@extends('layouts.dashboard') @section('title', 'قاعدة المعرفة') @section('content')

📚 قاعدة المعرفة

@forelse($branches as $branch)

{{ $branch->name }}

{{ $branch->city }}

@if($branch->active) نشط @else غير نشط @endif

📍 {{ $branch->address }}

📞 {{ $branch->phone }}

@if($branch->email)

✉️ {{ $branch->email }}

@endif
@empty

لا توجد فروع مسجلة

@endforelse
@push('scripts') @endpush @endsection