@extends('adminlte::page') @section('title', 'HeroLegend') @section('content')
@if (Session::has('message'))

{{Session::get('message')}}

@endif

Guild Raid

Create
@foreach($guild_raids as $guild_raid) @endforeach
ID Guild Name Description Items Actions
{{$guild_raid->id}} {{$guild_raid->guild->guild_name}} {{$guild_raid->name}} {{$guild_raid->description}} {{$guild_raid->items}} Chapters {!! Form::open(['action' => ['GuildRaidController@destroy', $guild_raid->id], 'method' => 'DELETE', 'data-confirm-message' => trans('labels.confirm_delete'), 'class' => 'inline', ]) !!} {{ Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger', 'onClick' => 'return window.confirm("Are you sure?")']) }} {!! Form::close() !!}
{{$guild_raids->links()}}
@stop