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