@extends('layouts.default')
@section('title', 'Agreement returns list')
@section('header-links')
@include('includes.headers.agreements')
@endsection
@section('new_button')
{!! Form::text('search', request('search'), ['id'=>'tableSearch','class' => 'form-control input-filter input-sm', 'placeholder' => 'Search ']) !!}
search
add Create New Agreement
@endsection
@section('content')
Consultant |
Agreement File |
System IP |
Sent On |
@foreach($list as $agreement)
{{ ucwords($agreement->consultant->name) }} |
download
|
{{ $agreement->login_ip }} |
{{ isset($agreement->created_at)?date('d-M-Y', strtotime($agreement->created_at)):'--' }} |
@endforeach
@if (count($list) == 0)
No Data |
@endif
@stop