@extends('backend.layouts.master') @section('title') Quản lý Khách hàng @endsection @section('styles') @include('backend.pages.partials.style_index') @endsection @section('page-header')

Tất cả Khách hàng

@if (Auth::guard('admin')->user()->can('customer.create')) Tạo mới Khách hàng @endif
@endsection @section('admin-content')

Danh sách Khách hàng

@include('backend.layouts.partials.messages') @foreach ($customers as $customer) @endforeach
No Tên Tuổi Email Số điện thoại Tổng điểm
{{ $loop->index+1 }} {{ $customer->name }} {{ $customer->age }} {{ $customer->email }} {{ $customer->phone }} {{ $customer->total_point }} @if (Auth::guard('admin')->user()->can('admin.edit')) Sửa @endif @if (Auth::guard('admin')->user()->can('admin.edit'))
@method('DELETE') @csrf
@endif
@endsection @section('scripts') @include('backend.pages.partials.script_index') @endsection