@extends('layouts.main') @section('content')
@if(Session::has('unauthorize'))
× {{ Session::get('unauthorize') }}
@endif @if(Session::has('update'))
× {{ Session::get('update') }}
@endif @if(Session::has('success'))
× {{ Session::get('success') }}
@endif
@if($actions->isEmpty())
No existing action(s) found.
@else @foreach($actions as $action) @endforeach
Action ID Action
{{ $action->a_number }} {{ $action->a_action }}
@endif
@stop