@extends('admin::layouts.master') @section('pageTitle') Autó modellek @endsection @section('header') @include('admin::layouts.header', ['title' => 'Autó modellek', 'subtitle' => 'Minden model', 'button' => route('car.create')]) @endsection @section('content') @foreach($model as $m) @endforeach
# Autó típusa Státusz {{ __('messages.actions') }}
{{$m->id}} {{$m->title}}
@can('delete kerdoiv')
@csrf @method('DELETE')
@endcan
@endsection