Customer List
| Customer No | Customer Name | Phone No | ||
|---|---|---|---|---|
| {{ $customer->customer_no }} | {{ $customer->name }} | {{ $customer->phone }} |
|
|
@extends('layouts/default')
{{-- Page title --}}
@section('title')
@parent
@stop
{{-- page level styles --}}
@section('header_styles')
@stop
{{-- Page content --}}
@section('content')
Maintenance System
{{ Session::get('message') }}
| Customer No | Customer Name | Phone No | ||
|---|---|---|---|---|
| {{ $customer->customer_no }} | {{ $customer->name }} | {{ $customer->phone }} |
|
|