@extends('layouts.app') @section('content')

Product Type List

@foreach ($types as $key => $type) @endforeach
# Product Type Status Actions
{{ $key + 1 }}
{{ $type->name }}
@if ($type->status == 0) id }} data-status="1" data-action="{{ route('change-status') }}">In-Active @else id }} data-status="0" data-action="{{ route('change-status') }}">Active @endif
@endsection @push('script') @endpush