@extends('admin.layouts.app') @section('content') @push('styles') @endpush
{{-- Back --}}
@if(isset($brand))
@csrf @method('PUT')
@error('brand_name') {{ $message }} @enderror
{{-- Save --}}
@else
@csrf
@error('brand_name') {{ $message }} @enderror
{{-- Save --}}
@endif
@if(session('success'))
{{ session('success') }}
@endif
{{-- --}} @foreach ($brands as $brand) {{-- --}} @endforeach
SL.No Category Status Action
{{ $loop->iteration }}
{{ $brand->brand_name }}
@if ($brand->brand_status == 1) Active @else InActive @endif
@endsection