@extends('layouts.master')
@section('content')
| ID |
Catalogue Name |
Type |
Inventory |
Created At |
Action |
@foreach ($catalogues as $data)
| {{$data->id}} |
{{$data->catalogue_name}} |
{{$data->sales_type == 2 ? "Secondary Sale":"Primary Sale"}} |
{{$data->inventory}} |
{{$data->created_at}} |
Export
Edit
|
@endforeach
@endsection