@extends('layouts.admin.master') @section('styles') @endsection @section('body-content')

{{--
Admin Products
--}}
@if ( session()->has('message') )
Well done! {{ session('message') }}
@endif @if(count($data))
@foreach($data as $brand) @if($brand['active'] == 1) @else @endif @endforeach
ID Name Status Action
{{$brand['id']}} {{$brand['brand_name']}}{{App\Models\Brand::STATUS_ACTIVE}}{{App\Models\Brand::STATUS_NOT_ACTIVE}}View
S# Name Status Action
@endif
@endsection @section('scripts') @endsection