@extends('admin.layout') @section('title') Brands @endsection @section('content')

Brands

@if(session()->has('success'))
@endif @if(session()->has('errorMessage'))
@endif
@foreach($brands as $key => $brand) @endforeach
# Name Active Edit Delete
{{ $key + 1 }} {{ $brand->brand_name }} @if($brand->brand_active == 1) Yes @else No @endif
@csrf @method("DELETE")
# Name Active Edit Delete
@endsection @section('pageScripts') @endsection