@extends('layouts.app') @section('title', 'Activity Logs | Settings') @section('extrastyles') @endsection @section('content')
Activity Logs
@include('flash::message')
{!! Form::label('start_date','Start Date') !!}
{!! Form::label('end_date','End Date') !!}
{!! Form::label('type','Select Type') !!} {!! Form::select('type', $types , '' , ['class' => 'form-control', 'placeholder' => 'Select Type', 'id' => 'type']) !!}
{!! Form::label('userId','Select User') !!} {!! Form::select('userId', $users , '' , ['class' => 'form-control', 'placeholder' => 'Select User', 'id' => 'userId']) !!}
{!! Form::label('action','Select Action') !!} {!! Form::select('action', ['created' => 'Created','updated' => 'Updated','deleted' => 'Deleted', ] , '' , ['class' => 'form-control', 'placeholder' => 'Select Action', 'id' => 'action']) !!}
Resource ID Modified By Modified At Change Type Action
@endsection @section('footer') @endsection