fixed client portal
This commit is contained in:
		@@ -11,16 +11,16 @@
 | 
			
		||||
@section('content')
 | 
			
		||||
<!-- Default box -->
 | 
			
		||||
<div class="box box-success">
 | 
			
		||||
    <div class="box-header">
 | 
			
		||||
    <div class="box-header with-border">
 | 
			
		||||
        {!! Form::open(['url' => 'customers/invoices', 'role' => 'form', 'method' => 'GET']) !!}
 | 
			
		||||
        <div class="pull-left">
 | 
			
		||||
            <span class="title-filter">{{ trans('general.search') }}:</span>
 | 
			
		||||
            <span class="title-filter hidden-xs">{{ trans('general.search') }}:</span>
 | 
			
		||||
            {!! Form::text('search', request('search'), ['class' => 'form-control input-filter input-sm', 'placeholder' => trans('general.search_placeholder')]) !!}
 | 
			
		||||
            {!! Form::select('status', $status, request('status'), ['class' => 'form-control input-filter input-sm']) !!}
 | 
			
		||||
            {!! Form::button('<span class="fa fa-filter"></span>  ' . trans('general.filter'), ['type' => 'submit', 'class' => 'btn btn-sm btn-default btn-filter']) !!}
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="pull-right">
 | 
			
		||||
            <span class="title-filter">{{ trans('general.show') }}:</span>
 | 
			
		||||
            <span class="title-filter hidden-xs">{{ trans('general.show') }}:</span>
 | 
			
		||||
            {!! Form::select('limit', $limits, request('limit', setting('general.list_limit', '25')), ['class' => 'form-control input-filter input-sm', 'onchange' => 'this.form.submit()']) !!}
 | 
			
		||||
        </div>
 | 
			
		||||
        {!! Form::close() !!}
 | 
			
		||||
@@ -28,30 +28,24 @@
 | 
			
		||||
    <!-- /.box-header -->
 | 
			
		||||
    <div class="box-body">
 | 
			
		||||
        <div class="table table-responsive">
 | 
			
		||||
            <table class="table table-bordered table-striped table-hover" id="tbl-invoices">
 | 
			
		||||
            <table class="table table-striped table-hover" id="tbl-invoices">
 | 
			
		||||
                <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <th>@sortablelink('invoice_number', trans('invoices.invoice_number'))</th>
 | 
			
		||||
                        <th>@sortablelink('customer_name', trans_choice('general.customers', 1))</th>
 | 
			
		||||
                        <th>@sortablelink('amount', trans('invoices.total_price'))</th>
 | 
			
		||||
                        <th>@sortablelink('status.name', trans_choice('general.statuses', 1))</th>
 | 
			
		||||
                        <th>@sortablelink('invoiced_at', trans('invoices.invoice_date'))</th>
 | 
			
		||||
                        <th>@sortablelink('due_at', trans('invoices.due_date'))</th>
 | 
			
		||||
                        <th style="width: 18%;">{{ trans('general.actions') }}</th>
 | 
			
		||||
                        <th class="col-md-2">@sortablelink('invoice_number', trans('invoices.invoice_number'))</th>
 | 
			
		||||
                        <th class="col-md-2 text-right">@sortablelink('amount', trans('general.amount'))</th>
 | 
			
		||||
                        <th class="col-md-3 text-right">@sortablelink('invoiced_at', trans('invoices.invoice_date'))</th>
 | 
			
		||||
                        <th class="col-md-3 text-right">@sortablelink('due_at', trans('invoices.due_date'))</th>
 | 
			
		||||
                        <th class="col-md-2 text-center">@sortablelink('status.name', trans_choice('general.statuses', 1))</th>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </thead>
 | 
			
		||||
                <tbody>
 | 
			
		||||
                @foreach($invoices as $item)
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <td><a href="{{ url('customers/invoices/' . $item->id . '/edit') }}">{{ $item->invoice_number }}</a></td>
 | 
			
		||||
                        <td>{{ $item->customer_name }}</td>
 | 
			
		||||
                        <td>@money($item->amount, $item->currency_code, true)</td>
 | 
			
		||||
                        <td>{{ $item->status->name }}</td>
 | 
			
		||||
                        <td>{{ Date::parse($item->invoiced_at)->format($date_format) }}</td>
 | 
			
		||||
                        <td>{{ Date::parse($item->due_at)->format($date_format) }}</td>
 | 
			
		||||
                        <td>
 | 
			
		||||
                            <a href="{{ url('customers/invoices/' . $item->id . '') }}" class="btn btn-info btn-xs"><i class="fa fa-eye" aria-hidden="true"></i> {{ trans('general.show') }}</a>
 | 
			
		||||
                        </td>
 | 
			
		||||
                        <td><a href="{{ url('customers/invoices/' . $item->id) }}">{{ $item->invoice_number }}</a></td>
 | 
			
		||||
                        <td class="text-right">@money($item->amount, $item->currency_code, true)</td>
 | 
			
		||||
                        <td class="text-right">{{ Date::parse($item->invoiced_at)->format($date_format) }}</td>
 | 
			
		||||
                        <td class="text-right">{{ Date::parse($item->due_at)->format($date_format) }}</td>
 | 
			
		||||
                        <td class="text-center">{{ $item->status->name }}</td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                @endforeach
 | 
			
		||||
                </tbody>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user