@extends('dashboard.layouts.app') @section('title', trans('admin.branches.title'). ' - ') @section('speedbar')
@endsection @section('content')
@can('create', 'branches') @lang('admin.add') @endcan
@if(count($branches) == 0) @endif @foreach($branches as $branch) @endforeach
ID @lang('admin.branches.name') @lang('admin.branches.phone') @lang('admin.actions')
@lang('admin.no_data')
{{ $branch->id }} {{ $branch->name['ru'] }} {{ $branch->phone }} @can('update', 'branches') @endcan @can('view', 'branches') @endcan @can('delete', 'branches') @endcan
@endsection