@extends('adminlte::page') @section('title', 'Product Types - MobileSentrix Admin') @section('content_header')

Product Types

Add New Product Type
@stop @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@foreach($productTypes as $productType) @endforeach
ID Image Name Slug Products Status Actions
{{ $productType->id }} @if($productType->image) {{ $productType->name }} @else No image @endif {{ $productType->name }} {{ $productType->slug }} {{ $productType->products_count }} @if($productType->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@stop @section('js') @stop