@extends('layouts.app-admin') @section('content')

Shops

Shop List Add Shop
@foreach($user as $key=>$row) @endforeach
# Shop Img Shop Id Shop Name Shop Owner Name Email Id Mobile No. Status By Created Date Action
{{$key+1}} @if($row->profileImage) @else @endif {{$row->id}} {{$row->name}} @if(@$row->type=='guest') Guest @endif {{$row->owner_name}} {{$row->email}} {{$row->mobile}} @if($row->status=='0') Active @else Disabled @endif {{$row->by}} @if(empty($row->created_at)) @else {{date('d M, Y h:i:s', strtotime($row->created_at))}} @endif Send credential
@endsection @section('script') @endsection