mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Stubs for datatables
This commit is contained in:
parent
f237bd958d
commit
7a6f9c993b
@ -12,6 +12,7 @@
|
||||
namespace App\Http\Controllers\ClientPortal;
|
||||
|
||||
use App\Filters\InvoiceFilters;
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Jobs\Entity\ActionEntity;
|
||||
use App\Models\Invoice;
|
||||
use App\Repositories\BaseRepository;
|
||||
@ -23,7 +24,7 @@ use Illuminate\Http\Request;
|
||||
* @package App\Http\Controllers\ClientPortal\InvoiceController
|
||||
*/
|
||||
|
||||
class InvoiceController extends BaseController
|
||||
class InvoiceController extends Controller
|
||||
{
|
||||
|
||||
use MakesHash;
|
||||
@ -36,8 +37,6 @@ class InvoiceController extends BaseController
|
||||
public function __construct()
|
||||
{
|
||||
|
||||
parent::__construct();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
@ -50,9 +49,9 @@ class InvoiceController extends BaseController
|
||||
public function index(InvoiceFilters $filters)
|
||||
{
|
||||
|
||||
$invoices = Invoice::filter($filters);
|
||||
// $invoices = Invoice::filter($filters);
|
||||
|
||||
return $this->listResponse($invoices);
|
||||
return view('portal.default.invoices.index');
|
||||
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,8 @@
|
||||
"spatie/browsershot": "^3.29",
|
||||
"superbalist/laravel-google-cloud-storage": "^2.2",
|
||||
"webpatser/laravel-countries": "dev-master#75992ad",
|
||||
"wildbit/postmark-php": "^2.6"
|
||||
"wildbit/postmark-php": "^2.6",
|
||||
"yajra/laravel-datatables-oracle": "~9.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"barryvdh/laravel-debugbar": "^3.2",
|
||||
|
@ -37,11 +37,11 @@
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<li class="nav-item dropdown" style="padding-right: 20px;">
|
||||
<a class="nav-link" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
|
||||
<img class="img-avatar" src="/images/logo.png" alt=""> {{ auth()->user()->present()->name() }}
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-right">
|
||||
<div class="dropdown-menu dropdown-menu-sm">
|
||||
<div class="dropdown-header text-center">
|
||||
<strong>@lang('texts.settings')</strong>
|
||||
</div>
|
||||
|
31
resources/views/portal/default/invoices/index.blade.php
Normal file
31
resources/views/portal/default/invoices/index.blade.php
Normal file
@ -0,0 +1,31 @@
|
||||
@extends('portal.default.layouts.master')
|
||||
|
||||
@section('header')
|
||||
@parent
|
||||
<link href="//cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css"/>
|
||||
|
||||
@stop
|
||||
|
||||
@section('body')
|
||||
<main class="main">
|
||||
<div class="container-fluid">
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-lg-12">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
@endsection
|
||||
|
||||
|
||||
@section('footer')
|
||||
@parent
|
||||
<script src="//cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js" type="text/javascript"></script>
|
||||
|
||||
@stop
|
||||
|
Loading…
Reference in New Issue
Block a user