@extends('admins.layouts.main') @section('tool') @endsection @section('content')

{{ $title }}

@can('create', App\Models\Supplier::class) 新增廠牌 @endcan
@foreach($suppliers as $supplier) @endforeach
編輯 id 名稱 連絡電話 網址 新增日期
@can('edit', App\Models\Supplier::class) 編輯 @endcan @can('show', App\Models\Supplier::class) 查看 @endcan @can('delete', App\Models\Supplier::class) @if($supplier->aed->isEmpty()) @endif @endcan {{ $supplier->id }} {{ $supplier->name }} {{ $supplier->phone_number }} {{ $supplier->url }} {{ $supplier->created_at }}
@endsection