@extends('admin.index') @section('page_title') @lang('CompanyBranches.show') @endsection @section('content')

@lang('CompanyBranches.show')

@if (count($branches) > 0) @foreach ($branches as $item) @endforeach @else @endif
ID @lang('CompanyBranches.title') @lang('companys.mobile') @lang('companys.email') @lang('companys.address') @lang('global.status') @lang('global.action')
{{ $item->id }} {{ $item->title }} {{ $item->mobile }} {{ $item->email }} {{ $item->address }} @if($item->status == 1) @lang('global.enabled') @else @lang('global.notenabled') @endif @can('branches_delete') {{--{!! Form::open(array(--}} {{--'style' => 'display: inline-block;',--}} {{--'method' => 'post',--}} {{--'onsubmit' => "return confirm('".trans("global.app_are_you_sure")."');",--}} {{--'route' => ['admin.CompanyBranches.destroy', $item->id])) !!}--}} {{----}} {{--{!! Form::close() !!}--}} @endcan
@lang('global.app_no_entries_in_table')

@if($branches->count()>0)
{{trans('global.total')}} : {{$branches->total()}}
@endif
@stop @section('javascript') @endsection