@extends('app') @section('title', 'Customers') @push('styles') @endpush @section('content')

Form Wizard

@if(Session::has('response')) {!!Session::get('response')['message']!!} @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@forelse ($customers as $customer) @empty @endforelse
Name Contact Address Sizes Added At Status Action
{{-- contact-img --}}

{{$customer->name}}

{{$customer->contact ?? ''}}
{{$customer->email ?? ''}}
{{$customer?->address}} view Size {{$customer?->created_at}} @if ($customer?->status==1) Active @else Deactive @endif
@csrf @method('delete')
{{__('No data founds!')}}
@endsection @push('scripts') {{-- --}} {{-- --}} @endpush