@extends('layout.admin') @section('head') @extends('layout.header') @section('header_title', 'Supplier') @endsection @section('content')

Supplier

Supplier Details

{{ csrf_field() }}
Enter a valid number (10 digits required)

View Supplier Details

@foreach ($suppliers as $item) @endforeach
Full Name Contact Number Address Status Change Update
{{ $item->Full_Name }} {{ $item->Contact_No }} {{ $item->Address ?: '-' }} @if ($item->Status) Active @else Inactive @endif
@endsection @section('script') @endsection