@extends('adminlte::page') @section('title', 'Şubeler') @section('css') @endsection @section('js') @endsection @section('content')

Şube Listesi

@foreach ($branch as $branch) @include('staff.branches.edit', ['branch' => $branch]) @include('staff.branches.show', ['branch' => $branch]) @endforeach
Adı Adres Telefon Şube Türü İşlemler
{{ $branch->name }} {{ $branch->adress }} {{ $branch->phone_number }} {{ $branch->type }}
@csrf @method('DELETE')
@include('staff.branches.create') @endsection