@extends('admin.layouts.app') @section('title', 'Model') @section('content')
| Vehicle Category | Brand | Name | Actions |
|---|---|---|---|
| {{$c->model_category->name}} | {{$c->brand->name}} | {{$c->name}} | @can('model-edit') Edit @endcan @can('model-delete') {!! Form::open(['method' => 'DELETE','route' => ['model.destroy', $c->id],'style'=>'display:inline', 'onsubmit' => 'return confirm("Are you sure you want to delete this Record?")']) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger btn-sm']) !!} {!! Form::close() !!} @endcan |