@extends('layouts.app') @section('title', $title) @section('subtitle', $subtitle) @push('css') @endpush @section('content')

{{ $title }}

@can('supplier-create') @endcan
@if(session('success'))
{{ session('success') }}
@endif @foreach ($data_suppliers as $p) @endforeach
No Nama Supplier Email No Telp Alamat Action
{{ $loop->iteration }} {{ $p->name }} {{ $p->email ? : 'No Data' }} {{ $p->phone ? : 'No Data' }} {{ $p->address ? substr($p->address, 0, 10) : 'No Data' }} Show @can('supplier-edit') Edit @endcan @can('supplier-delete') @endcan
@endsection @push('script') @endpush