@extends('layouts.app')
@section('stitle', 'Category')
@section('title', 'Category')
@section('b_title', 'View All')
@section('content')
{{-- --}}
Name |
Sku |
Category |
Price |
Status |
Actions |
@foreach($categoryProduct as $product)
{{$product->name}}
|
{{$product->sku}} |
{{$product->getCategory->name}}
|
{{$product->price}} |
@if ($product->status =='1')
Active |
@else
Deactive |
@endif
|
@endforeach
{{-- --}}
{{-- --}}
Name |
Sku |
Category |
Status |
Actions |
@foreach($categoryCombos as $combos)
{{$combos->name}}
|
{{$combos->sku}} |
{{$combos->getCategory->name}}
|
{{-- | --}}
@if ($combos->status =='1')
Active |
@else
Deactive |
@endif
|
@endforeach
{{-- --}}
@endsection
@push('my_scripts')
@endpush