@extends('header.header') @section('content')
Pharmacies
@if(Auth::user()->role == "All") @endif

Pharmacies table


@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
Pharmacies name Pharmacies image Status Address Tax MobileNumber Delivery free Rate action
@endsection