@extends('layouts.master') @section('title',trans('dashboard.stores')) @section('css') @endsection @section('page-content')
@if (count($errors) > 0) @foreach ($errors->all() as $error) @endforeach @endif @if (session()->has('add')) @endif @if (session()->has('edit')) @endif @if (session()->has('delete')) @endif
@for($i=0;$i<$unaccepted_stores_count;$i++) @if($stores[$i]['status']=='under_review') @elseif($stores[$i]['status']=='accepted') @else @endif @endfor
# @lang('dashboard.name') @lang('dashboard.status') @lang('dashboard.phone') @lang('dashboard.email') @lang('dashboard.join_date') @lang('dashboard.ads_number') @lang('dashboard.country') @lang('dashboard.image') @lang('dashboard.operations')
{{$stores[$i]['id']}} {{$stores[$i]['company_name']}} {{trans('dashboard.under_revision')}} {{trans('dashboard.accepted')}} {{trans('dashboard.rejected')}} {{$stores[$i]['phone']}} {{$stores[$i]['email']}} {{$stores[$i]['created_at']}} {{$prods_count[$i]}} {{$country[$i]}}
{{ $stores[$i]['company_name'] }}
@endsection @section('js') @endsection