@extends('layouts.app') @section('title', 'Brands - EDUC Pharmacy') @section('content')

Brands

@if (session('success')) @endif
@if ($brands->count() > 0)
@foreach ($brands as $brand) @endforeach
ID Name Note Actions
{{ $brand->id }} {{ $brand->name }} {{ Str::limit($brand->note, 50) ?? '-' }} Edit
@csrf @method('DELETE')
{{ $brands->links() }}
@else

No brands found. Create one now!

@endif
@endsection