@extends('layouts.master')
@section('titel', 'Customer | ')
@section('content')
@include('partials.header')
@include('partials.sidebar')
Customer |
Address |
Contact |
Details |
Action |
@foreach( $customers as $customer)
{{ $customer->name }} |
{{ $customer->address }} |
{{ $customer->mobile }} |
{{ $customer->details }} |
|
@endforeach
@endsection
@push('js')
@endpush