@extends('layout.app')
@section('content')
ID
|
Name
|
Contact
|
Address
|
Create Date
|
Action
|
@foreach ($list as $r)
{{ $r->id }}
|
{{ $r->name }}
|
{{ $r->contact_no }}
|
{{ $r->address }}
|
{{ date('d-M-Y H:i:s A', strtotime($r->created_at)) }}
|
|
@endforeach
{{ $list->links() }}
@endsection