@extends("admin.layouts.app") @section("styles") @endsection @section("content")
@lang("constants.heros")
@forelse($heros as $hero) @empty @endforelse
@lang('constants.image') @lang("constants.title") @lang("constants.animation") @lang('constants.is_active') Is Daek @lang('constants.action')
Image {{$hero->title}} {{ $hero->animation }} @if ($hero->is_active) @else @endif {{$hero->is_dark ? "Yes":"No"}} {{Form::open(['route'=>["admin.hero.destroy",$hero->id],'method'=>"delete"])}} id)}}" class="btn btn-outline btn-sm purple" title="Edit"> @lang("constants.edit") {!! Form::close() !!}
{!! $heros->links()!!}
@lang("constants.heros_order")
{{ Form::open(['route' => "admin.hero.order",'class'=>"form-horizontal"]) }} {{ Form::hidden('reorder',"",array('id'=>'reorder')) }}
    @foreach ($items as $item)
  1. {{$item['title']}}
  2. @endforeach
{!! Form::close()!!}
@endsection @section("scripts") @include("admin.layouts.update_attribute") @endsection