@extends('layouts.admin') @section('title', 'Brand List') @section('page-header')

Brand List

@endsection {{-- main content --}} @section('content')

Brand List

{{-- brand list --}} @if ($brands->isNotEmpty()) @foreach ($brands as $brand) @endforeach @endif
SL Name  
{{ $loop->iteration }} {{ $brand->name }}
{{-- create form --}} @if (!$edit)
@csrf
@endif {{-- end create form --}} {{-- update form --}} @if ($edit)
@method('PUT') @csrf
   Cancel
@endif {{-- end update form --}}
@endsection {{-- extra css --}} @push('css') {{-- data tables style --}} @endpush {{-- extra js --}} @push('js') {{-- DataTables & Plugins --}} @endpush {{-- extra js --}} @push('js') @endpush