Files
2026-04-01 16:16:25 +01:00

48 lines
1.6 KiB
PHP

@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ trans('general.activity_report') }}
@parent
@stop
@section('header_right')
<form method="POST" action="{{ route('reports.activity.post') }}" accept-charset="UTF-8" class="form-horizontal">
{{csrf_field()}}
<button type="submit" class="btn btn-default">
<x-icon type="download" />
{{ trans('general.download_all') }}
</button>
</form>
@stop
{{-- Page content --}}
@section('content')
<x-container>
<x-box>
<table
data-columns="{{ \App\Presenters\HistoryPresenter::dataTableLayout() }}"
data-cookie-id-table="activityReport"
data-id-table="activityReport"
data-side-pagination="server"
data-advanced-search="false"
data-sort-order="desc"
data-sort-name="created_at"
id="activityReport"
data-url="{{ route('api.activity.index') }}"
class="table table-striped snipe-table"
data-export-options='{
"fileName": "activity-report-{{ date('Y-m-d') }}",
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
}'>
</table>
</x-box>
</x-container>
@stop
@section('moar_scripts')
@include ('partials.bootstrap-table', ['exportFile' => 'activity-export', 'search' => true])
@stop