@extends('adminlte::layouts.app') @section('htmlheader_title') Trades Diary @endsection @section('contentheader_title') Trades Diary @endsection @section('header_styles') {{----}} @stop @section('main-content')
{{-- --}}
{{--
{!! \App\Helpers\CustomUI::selectMonth(isset($input['month'])?$input['month']:0) !!}
{!! \App\Helpers\CustomUI::SelectYear(isset($input['year'])?$input['year']:0) !!}
{!! Form::submit('View', ['class' => 'btn btn-primary']) !!}
--}}
@include('jobs.table')

Edit Job Card Detail

{!! Form::open(['route' => ['job.update',1], 'method' => 'patch','enctype'=>'multipart/form-data','id'=>'edit_job_form']) !!}
{!! Form::label('name', 'Job Title:') !!} {!! Form::text('title',null, ['class' => 'form-control', 'id'=>'edit_title']) !!}
{!! Form::label('name', 'Job Detail:') !!} {!! Form::text('detail',null, ['class' => 'form-control', 'id'=>'edit_detail']) !!}
@include('jobs.partial.documents') @include('jobs.partial.repeat_date')
{{----}} {!! Form::submit('submit', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}

View Job Card Detail

{!! Form::label('name', 'Job Title:') !!} {!! Form::text('title',null, ['class' => 'form-control', 'id'=>'view_title']) !!}
{!! Form::label('name', 'Job Detail:') !!} {!! Form::text('detail',null, ['class' => 'form-control', 'id'=>'view_detail']) !!}
@endsection @section('footer_scripts') {{-- --}} {{-- --}} @stop