@extends('header.header') @section('content')
{{__('Stores')}}

{{--
--}} {{-- New Store+--}} {{--
--}}

{{__('Stores table')}}

@foreach($stores as $store) @endforeach
{{__('Stores image')}} {{__('Stores name')}} {{__('Classifications')}} {{__('Status')}} {{__('Address')}} {{__('Tax')}} {{__('MobileNumber')}} {{__('Delivery Free')}} {{__('Action')}}
{{$store->lang ? $store->lang->translate_title : Null}}
{{$store->CLASSIfication->name_.\Illuminate\Support\Facades\App::getLocale() == 'en' ? $store->CLASSIfication->name_en : $store->CLASSIfication->name_ar}} @if($store->status == 0) @elseif($store->status == 1) @endif @if($store->status == 0) InActive @elseif($store->status == 1) Active @endif {{ $store->city }} {{ $store->tax }} {{ $store->phone_number }} @if($store->delivery_free == 0) @else @endif @if($store->delivery_free == 0) Inactive @else Active @endif @if(isset(Auth::user()->role)&&!empty(Auth::user()->role)) @if(Auth::user()->role == "All")
@endif @endif
{{-- --}} {{-- --}} {{-- --}}
{{--
--}} {{-- --}} {{-- --}} {{-- --}}
{{ $stores->links() }}
@endsection