@foreach($stops as $key=> $row)
{{ $row->subscribe->user->name }} {{ $row->subscribe->user->email }} {{ $row->subscribe->user->phone }} @if($row->reason_id){{ $row->reason->descriptions()->name }} @else {{__('stops.other')}} @endif {{ __('stops.'.$row->type) }} {{ $row->start_date }} {{ $row->end_date }} {{ \Carbon\Carbon::parse($row->created_at)->format('Y/m/d') }} @if($row->deleted_at) {{ __('dashboard.restore') }} {{ __('dashboard.delete') }} @else {{ __('dashboard.edit') }} {{ __('dashboard.trash') }} @endif @endforeach @if( count( $stops ) && $stops->hasPages() ) {{ $stops->links() }} @endif