@extends('layouts.app') @section('title', __('master.list')) @section('content')
| {{ __('app.table_no') }} | {{ __('master.name') }} | {{ __('master.description') }} | {{ __('app.action') }} |
|---|---|---|---|
| {{ $mstrCollections->firstItem() + $key }} | {{ $singleMstr->name_link }} | {{ $singleMstr->description }} | @can('view', $singleMstr) {!! link_to_route( 'masters.show', __('app.show'), [$singleMstr], ['class' => 'btn btn-default btn-xs', 'id' => 'show-master-' . $singleMstr->id] ) !!} @endcan |