@extends('layouts.app') @section('title', trans('master.list')) @section('content')
| {{ trans('app.table_no') }} | {{ trans('master.name') }} | {{ trans('master.description') }} | {{ trans('app.action') }} |
|---|---|---|---|
| {{ $mstrCollections->firstItem() + $key }} | {{ $singleMstr->name }} | {{ $singleMstr->description }} | @can('update', $singleMstr) {!! link_to_route( 'masters.index', trans('app.edit'), ['action' => 'edit', 'id' => $singleMstr->id] + Request::only('page', 'q'), ['id' => 'edit-singleMstr-' . $singleMstr->id] ) !!} | @endcan @can('delete', $singleMstr) {!! link_to_route( 'masters.index', trans('app.delete'), ['action' => 'delete', 'id' => $singleMstr->id] + Request::only('page', 'q'), ['id' => 'del-singleMstr-' . $singleMstr->id] ) !!} @endcan |