@extends('layout.front')
@section('css_page_level')
@endsection
@section('page-content')
@foreach($tours as $one)
@if($one->cover_img != '')
@else
@endif
|
{{$one->title}}
{{ $one->introduce }}
|
{{ $one->created_at }}
|
@endforeach
@if($tours->count() == 0)
@endif
{!! $tours->render() !!}
@endsection