@extends('layouts.dashboard') @section('css') @endsection @section('content') {{-- Table Component ['href of Add Button'] & ['The Title Of The Table'] --}} {{-- Head Of The Table --}} @slot('table_header') {{ __('Branch Name') }} {{ __('Edit Branch') }} {{ __("Branch's Sections") }} @endslot {{-- Body Of The Table --}} @slot('table_body') @foreach ($company->branches as $item) {{$item->name[lang()]}} {{-- --}} @endforeach @endslot @endsection @section('js') @endsection