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

Concept

From artistic concepts to planned storylines, concepts can be whatever you want!

Concept Categories Create New Concept
@if (!count($concepts))

No concept found.

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