@extends('admin.layouts.app') @section('title', 'Mapping Territory') @section('content')
| territory | |
|---|---|
| {{$c->territory->name}} | @can('mapping-territory-edit') Edit @endcan @can('mapping-territory-delete') {!! Form::open(['method' => 'DELETE','route' => ['mapping-territory.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 |