@extends('layouts.admin') @section('title', 'Customer List') @section('content-header', 'Customer List') @section('content-actions') Add Customer @endsection @section('content')
@foreach ($customers as $customer) @endforeach
ID Avatar First Name Last Name Email Phone Address Created At Actions
{{$customer->id}} {{$customer->first_name}} {{$customer->last_name}} {{$customer->email}} {{$customer->phone}} {{$customer->address}} {{$customer->created_at}}
{{ $customers->render() }}
@endsection @section('js') @endsection