@extends('adminlte::page') @section('title', \App\CustomList::getFncName($fncName).'表示一覧') @section('content_header')

{{ \App\CustomList::getFncName($fncName) }}表示一覧

@stop @section('content')

一覧管理

新規登録
@foreach ($customLists as $customList) @endforeach
ID 表示名 作成者 一覧へ 編集 複製 削除
{{ $customList->id }} {{ $customList->name }} @isset($customList->user){{ $customList->user->name }}@endisset 一覧 @if(\Auth::user()->id === $customList->user_id) 編集 @endif @if(\Auth::user()->id === $customList->user_id) 複製 @endif @if(\Auth::user()->id === $customList->user_id)
{{ csrf_field() }} @method('delete')
@endif
@endsection @section('js') @endsection @section('css') @endsection