@extends('cms.layouts.app')
@section('pre-styles')
@endsection
@section('contents')
Add Product
Created |
Title |
Category |
Feature Image |
Status |
Action |
@foreach ($products as $product)
{{ $product->created_at }} |
{!! $product->title !!} |
{{ $product->postCategory->name ?? '' }} |
|
|
@if ($product->deleted_at == null)
@else
@endif
|
@endforeach
@endsection
@section('scripts')
@endsection