@extends('../themes/' . $activeTheme . '/' . $activeLayout) @section('subhead')
CRUD Data List - Midone - Tailwind Admin Dashboard Template
@endsection @section('subcontent')
Data List Layout
Add New Product
Print
Export to Excel
Export to PDF
Showing 1 to 10 of 150 entries
IMAGES
PRODUCT NAME
STOCK
STATUS
ACTIONS
@foreach (array_slice($fakers, 0, 9) as $faker)
{{ $faker['products'][0]['name'] }}
{{ $faker['products'][0]['category'] }}
{{ $faker['stocks'][0] }}
$faker['true_false'][0], 'text-danger' => !$faker['true_false'][0], ])>
{{ $faker['true_false'][0] ? 'Active' : 'Inactive' }}
Edit
Delete
@endforeach
...
1
2
3
...
10
25
35
50
Are you sure?
Do you really want to delete these records?
This process cannot be undone.
Cancel
Delete
@endsection