@extends('adminlte::page')
@section('title', 'Brand Book')
@section('content_header')
@stop
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| ID |
Brand book Name |
Brand book File |
Status |
Actions |
@foreach($brand_book as $value)
| {{ $value->id }} |
{{ $value->file_name }} |
@if($value->file_name)
@else
No PDF File
@endif
|
@if($value->status == 1)
Active
@else
Inactive
@endif
|
|
@endforeach
| ID |
Brand book Name |
Brand book File |
Status |
Actions |
@stop
@section('js')
@stop