@extends('admin::index') @section('content')

{{ $header or trans('admin.title') }} {{ $description or trans('admin.description') }}

@include('partials.breadcrumb')
@include('partials.error') @include('admin::partials.exception') @include('admin::partials.toastr') {{-- MAIN CONTENT --}}
{{ __('Thêm sản phẩm') }}
{{ Form::open(array('url' => url()->current(), 'method' => 'get')) }}
{{ Form::close() }}
@forelse($products as $order) @empty @endforelse
{{__('Ảnh')}} {{__('Mã SP')}} {{__('Tên')}} {{__('Giá bán')}} {{__('Nhãn hiệu')}} {{__('Ngày tạo')}}
{{ $order->code }} {{ $order->name }} {{ number_format($order->sale_price,1)}}₫ {{ $order->brand->name }} {{ $order->updated_at->format('d-m-Y H:i') }}
{{__('Không có dữ liệu')}}
@if(has_paging($products)) @endif
@endsection @php @endphp