@extends('layouts.backend',['page_title'=>'Pages']) @section('title')@parent - {{ trans('product.globals.categories') }} @stop @section('content-header')

الفروع

@if(auth()->user()->role_id == 1 || auth()->user()->can('branches.create')) {{trans('backend.Add New')}} @endif
@stop @section('content')
@if($branches && count($branches) > 0) @foreach($branches as $key=>$branch) @endforeach @else @endif
{{ trans('backend.fields.name') }} {{ trans('backend.action') }}
{!! $branch->title !!}
@if(auth()->user()->role_id == 1 || auth()->user()->can('branches.show')) @endif @if(auth()->user()->role_id == 1 || auth()->user()->can('branches.edit')) @endif @if(auth()->user()->role_id == 1 || auth()->user()->can('branches.destroy')) id) }}' class="btn btn-danger btn-sm delete" data-toggle="tooltip" title="{{trans('backend.Delete')}}"> @endif
{{trans('backend.no records founded')}}
{{$branches->render()}}
@stop @section('scripts') @stop