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

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

@endif

Gift Codes

Create
@foreach($gift_code_list as $gift_code) @endforeach
ID GiftCode Diamond Gold Items MemberID Server Amount Amount Received Actions
{{$gift_code->id}} {{$gift_code->code}} {{$gift_code->diamond}} {{$gift_code->gold}} {{$gift_code->items}} {{$gift_code->member_id}} {{$gift_code->server_id}} {{$gift_code->amount}} {{$gift_code->amount_received}} {!! Form::open(['action' => ['GiftCodeController@destroy', $gift_code->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() !!}
@stop