@extends('layouts.master') @section('content')
Back to Dashboard
Add Supplier Category
@csrf
@if(Session::has('success'))

{{ Session('success') }}

@endif @if(Session::has('error'))

{{ Session('error') }}

@endif
Supplier Categories
@foreach($categories as $category) @endforeach
Code Name Description Action
{{ $category->code }} {{ $category->name }} {{ $category->description }}
@endsection