@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if (session('success'))
{{ session('success') }}
@endif
@if (count($suppliers) > 0)
S.No |
Supplier Name |
Place |
Supplier Id |
Version |
View |
@foreach ($suppliers as $index => $s)
{{ $index + $suppliers->firstItem() }}
|
{{ $s->supplier_name }}
|
{{ $s->place }}
|
{{ $s->supplier_id }}
|
v{{ $s->version }}
|
View
File
|
@endforeach
@else
No result found
@endif