@extends('layouts.app-admin') @section('title', 'Shop Management') @section('content')
{{trans('admin_default.list_shops')}}
@if (permission_check(6,'can_add')) {{trans('admin_default.add')}} @endif @foreach($shops as $shop) @endforeach
{{trans('admin_default.id')}} {{trans('admin_default.shop_name')}} {{trans('admin_default.branche_code')}} {{trans('admin_default.phone')}} {{trans('admin_default.email')}} {{trans('admin_default.location')}} {{trans('admin_default.balance')}} Actions
{{$index}} {{strtoupper($shop->branch_code)}} {{$shop->phone}} {{$shop->email}} {{$shop->province_name}} , {{$shop->country_name}} {{$shop->symbol}} {{$shop->value==null?0.00:$shop->value }}
@if(count($shops))
{{ $shops->appends(Request::only('search_text'))->links() }}
@endif
@endsection @section('script') @endsection