@extends('admin.layouts.master') @section('brand-models', 'active') @section('title') {{ $data['title'] ?? 'Brand Models Management' }} @endsection @push('style') @endpush @section('content')

{{ $data['title'] ?? 'Brand Models Management' }}

Brand Model List
@foreach($models as $model) @endforeach
# Model Name Brand Slug Status Actions
{{ $loop->iteration }} {{ $model->name }} @if ($model->brand) {{ $model->brand->name }} @else - @endif {{ $model->slug }} @if($model->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
{{-- Create Model Modal --}} {{-- Edit Model Modal --}} @endsection @push('script') @endpush