@extends('layouts.app')
@push('before-css')
@endpush
@section('content')
Store
Add Products
| # |
Category | Name | Slug |
Actions |
@foreach($store as $item)
| {{ $loop->iteration or $item->id }} |
{{ $item->category }} | {{ $item->name }} | {{ $item->slug }} |
|
@endforeach
@include('layouts.admin.footer')
@endsection
@push('js')
@endpush