В нашем приложении у нас есть модули, называемые отчетами, в которых в этом отчете будет показана сводная информация о модуле.
Пример
General Journal Report - in this report will show you the summarize of the general journal module.
Теперь в нашем в отчетах необходимо реализовать разбиение на страницы, возникла проблема с применением разбиения на страницы в построителе запросов.
Контроллер
$general_journals = GeneralJournalReportModel::getGeneralJournals();
$data['defined_gj'] = GeneralJournalReportItemsController::getDefinedGJById($general_journals);
Я извлекаю все общие записи журнала и сохраняю их в Затем переменную general_journals я передал в другой контроллер, чтобы сделать что-то еще (например, поставить некоторую обработку ошибок, когда столбец нулевой).
Модель
public static function getGeneralJournals()
{
return DB::table('general_journals as gj')
->select('gj.id as id',
'gj.number as number',
'gj.posting_date as posting_date',
'gj.remarks as remarks',
'gj.document_reference as document_reference',
'gji.debit_amount as debit_amount',
'gji.credit_amount as credit_amount')
->leftJoin('general_journal_items as gji', 'gj.id', '=', 'gji.general_journal_id')
->where('gj.company_id', Auth::user()->company_id)
->where('gj.approval_status', 3)
->orderBy('gj.id', 'desc')
->simplePaginate(5);
}
Вид
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12 col-lg-12">
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover general-journal-report-table" id="gj-report">
<thead class="thead-global">
<tr>
<th id="pj_sequence">Sequence No.</th>
<th id="pj_date">Posting Date</th>
<th id="pj_op">Transaction No.</th>
<th id="4">Document Reference</th>
<th id="5">Remarks</th>
<th id="6">Amount Due</th>
</tr>
</thead>
<tbody class="general-journal-report-details">
@if($defined_gj)
<?php $counter = 0; ;?>
<?php $total_debit = 0; ?>
@foreach($defined_gj as $key => $value)
<?php $counter++;?>
<?php $total_debit += $value->debit ;?>
<tr>
<td class="pj_sequence">{{$counter}}</td>
<td class="pj_date">{{$value->posting_date}}</td>
<td class="pj_op">{!! $value->number !!}</td>
<td>{{$value->doc_ref}}</td>
<td>{{$value->remarks}}</td>
@if($value->debit == '0')
<td></td>
@else
<td align="right"> {{number_format($value->debit,2)}}</td>
@endif
</tr>
@endforeach
<tr>
<td><b>Total</b></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td align="right"> {{number_format($total_debit)}}</td>
</tr>
@endif
</tbody>
</table>
</div>
{{ $general_journals->links() }}
</div>
Когда я использовал ссылки (), моя кнопка не имеет никакого класса.
Вопрос: Как поставить какой-то класс на кнопке ссылок?
ПРИМЕЧАНИЕ. Я пробовал это {{$ general_journals-> links ()}}, но оно работало только на предыдущей кнопке (я также хочу применить класс к следующей кнопке)