@extends('master.app')
@section('title', 'customer')
@section('body')
"Admad" Bill List
# |
Name |
Phone |
Address |
Actions |
@foreach ($bills as $row)
{{ $loop->iteration }} |
{{ $row->name }}
|
{{ $row->phone }} |
{{ $row->address }}
|
|
@endforeach
{{ $bills->links('pagination::bootstrap-4') }}
@endsection
@section('pageJs')
@endsection