@extends('templates.dashboard') @section('title', 'Abiofore') @section('content_header') {{-- Navigation widget --}} {{-- @livewire('widgets.navigation', [ 'tabs' => [ ['name'=>"documents",'display'=>"Documents", 'active'=>true], ['name'=>"carnet_sanitaire",'display'=>"Carnet Sanitaire"], ]]) --}} {{-- @php $tabs = []; $books = App\Models\Book::where('template',true)->get(); array_push($tabs, ['name'=>"documents",'display'=>"Documents", 'active'=>true]); foreach ($books as $book) { array_push($tabs, ['name'=>$book->name,'display'=>$book->title]); } @endphp --}} @livewire('widgets.navigation', ['tabs' => $tabs]) @stop @section('content') {{-- Content widget --}} @livewire('widgets.content', ['page'=>'documents','books'=>$books]) @stop @section('css') @parent @stop @section('js') @parent @stop