@extends('layouts.view') @section('title',trans('trip.trips')) @section('links') @endsection @section('content')

{{trans('trip.trips')}}

@if ($message = Session::get('success'))

{{ $message }}

@elseif($message = Session::get('error'))

{{$message}}

@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

{{$d_bonus}}

@if(count($trip->notes('trip'))) @foreach($trip->notes('trip') as $note)

{{$note->note}}

{{$note->created_at->diffForHumans()}}
@endforeach @endif
@if($trip->status == auth()->id())
@endif
@if(($trip->status >0)&&(Auth::user()->hasRole('Admin'))) {{trans('lang.assign')}} @endif
@endsection @section('scripts') @endsection