@extends('backend.layouts.master') @section('title') Quản lý Tích điểm @endsection @section('styles') @include('backend.pages.partials.style_index') @endsection @section('page-header')

Tất cả Tích điểm

@endsection @section('admin-content')
@csrf

Danh sách Tích điểm

@include('backend.layouts.partials.messages') @foreach ($points as $point) @endforeach
No Khách hàng Số điện thoại Mã đơn hàng Điểm Ngày tích
{{ $loop->index+1 }} {{ $point->customer->name }} {{ $point->customer->phone }} {{ $point->order_id }} {{ $point->point }} {{ $point->created_at->format('d-m-Y') }} @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