@extends('admin.layouts.master')
@section('title')
Products
@endsection
@section('css')
@include('addOns.dataTables.css')
@endsection
@section('content')
Products
| Name |
Category |
Options |
@foreach ($products as $product)
| {{ $product->name_sr }} |
{{ $product->category->name_sr }} |
|
@endforeach
@endsection
@section('scripts')
@include('addOns.dataTables.js')
@endsection