@extends('header.header')
@section('content')
Pharmacies name |
Pharmacies image |
Status |
Address |
Tax |
MobileNumber |
Delivery free |
Rate |
action |
|
@foreach($data['data'] as $Pharmacies)
@if(!empty(Auth::user()->role) && isset(Auth::user()->role) && Auth::user()->role == 4)
@if(Auth::user()->StoreID == $Pharmacies['branch_id'])
@include('pharmaciesTable')
@break
@endif
@else
@include('pharmaciesTable')
@endif
@endforeach
@endsection