@extends('admin.layout') @section('admin-title') Flora @endsection @section('admin-content') {!! breadcrumbs(['Admin Panel' => 'admin', 'Flora' => 'admin/world/floras']) !!}

Flora

Flora are the plants of your world.

Flora Categories Create New Flora
@if (!count($floras))

No flora found.

@else @foreach ($floras as $flora) @endforeach
url !!} @if ($flora->thumb_extension) data-toggle="tooltip" title="
{{ ucfirst($flora->name) }} " @endif />{!! $flora->name !!}
{{ $flora->summary ? '(' . $flora->summary . ')' : '' }}
Edit
{!! Form::open(['url' => 'admin/world/floras/sort']) !!} {!! Form::hidden('sort', '', ['id' => 'sortableOrder']) !!} {!! Form::submit('Save Order', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endif @endsection @section('scripts') @parent @endsection