@extends('admin.pages.build')
@section('header', 'Şube Yönetimi')
@section('content')
| İl |
Şube Adı |
{{-- Tür | --}}
Telefon |
Durum |
İşlem |
@foreach($branches as $branch)
| {{ $branch->city_plate }} - {{ $branch->city_name }} |
{{ $branch->name }} |
{{-- {{ $branch->type }} | --}}
{{ $branch->phone }} |
{{ $branch->is_active ? 'AKTİF' : 'PASİF' }}
|
|
@endforeach
@endsection