@extends('layouts.default')
@section('header-links')
@endsection
@section('title', $title.' Expenses')
@section('new_button')
{!! Form::text('search', request('search'), ['onkeyup'=>'searchData(this)','onblur'=>'searchData(this)','class' =>
'form-control input-filter input-sm', 'placeholder' => trans('general.search_placeholder')]) !!}
search
add {{ trans_choice('general.bills', 2) }}
@endsection
@section('content')
{{ trans_choice('general.numbers', 1) }} |
{{ trans_choice('general.vendors', 1) }} |
{{ trans('general.amount') }} |
{{ trans('bills.bill_date') }} |
{{ trans('bills.due_date') }} |
{{ trans_choice('general.statuses', 1)}} |
{{ trans('general.actions') }} |
|
{{ Form::hidden('type', 'all', ['id'=>'type']) }}
{{ Form::hidden('page_id', 1, ['id'=>'page_id']) }}
@push('css')
@endpush
@endsection