@extends('layouts.dashboard') @section('stylesheet') @endsection @section('content')
| # | 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->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() !!} |