2018-11-07 10:36:42 +01:00
|
|
|
@extends('layouts.master', ['header' => $header])
|
2018-10-29 04:16:17 +01:00
|
|
|
|
|
|
|
@section('head')
|
2018-11-07 10:36:42 +01:00
|
|
|
@parent
|
2018-10-29 04:16:17 +01:00
|
|
|
<link rel="stylesheet" href="//cdn.datatables.net/1.10.18/css/dataTables.bootstrap4.min.css">
|
|
|
|
<script src="//cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js"></script>
|
|
|
|
<script src="//cdn.datatables.net/1.10.18/js/dataTables.bootstrap4.min.js"></script>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('body')
|
2018-11-07 10:36:42 +01:00
|
|
|
@parent
|
2018-10-29 04:16:17 +01:00
|
|
|
<main class="main" >
|
|
|
|
<div class="container-fluid">
|
2018-12-13 12:01:33 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<button class="btn btn-primary btn-lg pull-right">{{ trans('texts.new_client') }}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-12-24 01:45:55 +01:00
|
|
|
<div id="ui-view" style="padding-top:20px;">
|
2018-10-29 04:16:17 +01:00
|
|
|
<div class="animated fadeIn">
|
2018-12-24 01:45:55 +01:00
|
|
|
<div class="col-md-12 card">
|
2018-10-29 04:16:17 +01:00
|
|
|
|
|
|
|
{!! $html->table() !!}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('footer')
|
2018-11-07 10:36:42 +01:00
|
|
|
@parent
|
2018-10-29 04:16:17 +01:00
|
|
|
{!! $html->scripts() !!}
|
2018-11-10 14:24:36 +01:00
|
|
|
@endsection
|