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

Customer List

Here you can view all the Customers

@foreach ($customers as $customer) @endforeach
# Creation Name Email Username Password Address Birth Year Validity Actions
{{ $loop->index+1 }} {{ $customer->created_at }} {{ $customer->name }} {{ $customer->email }} {{ $customer->username }} {{ $customer->value }} {{ $customer->address }} {{ $customer->birth_year }} {{ $customer->validity }}
@endsection