D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
resources
/
views
/
manager
/
Filename :
contracts.blade.php
back
Copy
@extends('layouts.manager') @section('styles') @parent <link href="{{ asset('css/manager.css')}}" rel="stylesheet"> @endsection @section('scripts') @parent <script type="text/javascript" src="{{asset('public/js/manager_archive.js')}}"></script> @endsection @section('content') <div class="container"> <div class="row"> <div class="col-md-12 bodycon"> <div class="panel-body main_body"> <div class="main_page"> @include('manager.includes.links') <div class="link"> @if(isset($saloon->id)) <a href="{{asset('contract/'.$saloon->id)}}" class="btn btn-danger" target="_blank">Add new contract</a> @endif </div> <div class="tab-content index"> <table width="100%" class="table archive_table"> <tr> <th>#</th> <th> Name </th> <th> Type of service </th> <th> Date and Time </th> </tr> @foreach($contracts as $one) <tr> <td>{{$one->id}}</td> <td> {{$one->name}} </td> <td> {{$one->type}} </td> <td> {{\Carbon\Carbon::parse($one->created_at)->format('d-m-Y h:i')}} </td> </tr> @endforeach </table> <p align="center"> {!! $contracts->links() !!} </p> </div> </div> </div> </div> </div> </div> @endsection