@extends('layouts.dashboard') @section('stylesheet') @endsection @section('content')
List of Tours
New Tour
@foreach ($tours as $tour) @endforeach
# Image Category Title Label Price Action
{!! Form::checkbox('in_home[' . $tour->id . ']', $tour->id, $tour->in_home, ['class' => 'in_home_checkbox', 'id' => 'in_home_field_' . $tour->id]); !!} {{ $tour->name_en }} {{ $tour->categorie->name_en }} {{ $tour->name_en }} {{ $tour->label_en }} {{ $tour->price }} View Edit Dupliquer {{ $dispo }} {!! Form::open(['route'=>['administration.tours.destroy', $tour->id],'method'=>'DELETE','class'=>'form-delete']) !!} {!! Form::submit('Delete',['class'=>'btn btn-danger']) !!} {!! Form::close() !!}
@endsection @section('scripts') @endsection