@extends('layouts.master')
@section('titel', 'Supplier | ')
@section('content')
@include('partials.header')
@include('partials.sidebar')
Supplier |
Address |
Contact |
Details |
Action |
@foreach( $suppliers as $supplier)
{{ $supplier->name }} |
{{ $supplier->address }} |
{{ $supplier->mobile }} |
{{ $supplier->details }} |
|
@endforeach
@endsection
@push('js')
@endpush