@extends('layouts.app') @section('content')

All Books Published

Department @if(auth()->user()->role_id == 1) {{-- Admin: can choose any department --}} @else {{-- Coordinator/Faculty: department is fixed --}} @endif
Publisher
Date of Publication
@php use Illuminate\Support\Str; $labels = [ 'Title', 'Author', 'Publisher', 'Date of Publication', 'ISSN/eISSN number', 'Department', ]; $columns = []; foreach ($labels as $i => $label) { $columns[] = [ 'label' => $label, 'id' => 'column-' . Str::slug($label, '-'), 'value' => $i + 2, 'checked' => true, ]; } @endphp
ID Title Author Publisher Date of Publication ISSN/eISSN number Department Actions
@endsection @section('scripts') @endsection