@extends('header.header') @section('content')
Users Store

@foreach($users as $user) @else
@endif @endforeach
image Name Email Mobile number StoreName Status Action
Image placeholder {{$user->name}} {{$user->email}} {{$user->MobileNumber}} {{$user->store_name}} @if($user->status == 0)
@if(Gate::check("update-stores-user") || Auth::user()->role <= 2)
id)}}" type="button" class="btn btn-outline-primary" >
@endif @if(Gate::check("delete-stores-user") || Auth::user()->role <= 2)
id)}}" method="post" class="makeITinline"> @csrf @method("delete")
@endif
@endsection