diff options
author | Sam Light <samlight1994@gmail.com> | 2025-04-02 23:18:08 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-04-02 23:18:08 +0100 |
commit | 40607777a5752523f6750312675db09665726a5f (patch) | |
tree | 61004cf8148cb9e57bec12a5e92a2b352fc1528b /resources/views | |
parent | 350dc0827e0ff9e4f47c2df23187a35e8a8cf58b (diff) |
Switch to allow multiple toolbars
Diffstat (limited to 'resources/views')
-rw-r--r-- | resources/views/table.blade.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/views/table.blade.php b/resources/views/table.blade.php index ec2cd25..8812b0c 100644 --- a/resources/views/table.blade.php +++ b/resources/views/table.blade.php @@ -1,5 +1,7 @@ <div> - {{ $toolbar?->render() }} + @foreach($toolbars as $toolbar) + {{ $toolbar?->render() }} + @endforeach <table class="table"> <colgroup> @foreach($columns as $column) |