@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/licenses/general.view') }} - {{ $license->name }} @parent @stop {{-- Page content --}} @section('content')
@can('checkin', \App\Models\License::class) @include ('modals.confirm-action', [ 'modal_name' => 'checkinFromAllModal', 'route' => route('licenses.bulkcheckin', $license->id), 'title' => trans('general.modal_confirm_generic'), 'body' => trans_choice('admin/licenses/general.bulk.checkin_all.modal', 2, ['checkedout_seats_count' => $checkedout_seats_count]) ]) @endcan @can('checkout', \App\Models\License::class) @include ('modals.confirm-action', [ 'modal_name' => 'checkoutFromAllModal', 'route' => route('licenses.bulkcheckout', $license->id), 'title' => trans('general.modal_confirm_generic'), 'body' => trans_choice('admin/licenses/general.bulk.checkout_all.modal', 2, ['available_seats_count' => $available_seats_count]) ]) @endcan @can('update', \App\Models\License::class) @include ('modals.upload-file', ['item_type' => 'license', 'item_id' => $license->id]) @endcan @stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop