@extends('layouts.admin') @section('title', 'Add-ons List') @section('content-header', 'Add-ons List') @section('content-actions') Create Add-ons @endsection @section('content')
@foreach ($addons as $addon) @endforeach
Branch ID Addon ID Name Status Created At Updated At Actions
{{$addon->BID}} {{$addon->id}} {{$addon->name}} {{$addon->is_active ? 'Active' : 'Inactive'}} {{$addon->created_at}} {{$addon->updated_at}}
{{ $addons->render() }}
@endsection @section('js') @endsection