@extends('layouts.default', ['appTopMenu' => true]) @php use App\Models\inventory\Issue_model; use App\Models\inventory\Purchase_model; @endphp @section('title','Dashboard') @push('scripts') @endpush @section('content')
@if (session('status'))
{!! session('status') !!}
@elseif(session('failed'))
{{ session('failed') }}
@endif @if(\Session::has('success'))
{{\Session::get('success')}}
@endif
Issue Report
{{ Form::open(array('name'=>'searchForm','id'=>'searchForm','url'=>'reports/issue_by_nums', 'class'=>'form-horizontal' ,'method' => 'POST')) }}
{{ $errors->first('search_by') }}
{{ $errors->first('number') }}
{{ Form::close() }}
OR
{{ Form::open(array('name'=>'searchForm2','id'=>'searchForm2','url'=>'reports/issue_by_nums', 'class'=>'form-horizontal' ,'method' => 'POST')) }}
{{ $errors->first('issue_to') }}
{{ Form::close() }} {{ Form::open(array('name'=>'searchForm2','id'=>'searchForm2','url'=>'reports/issue_by_nums', 'class'=>'form-horizontal' ,'method' => 'POST')) }}
{{ $errors->first('section') }}
{{ Form::close() }} {{ Form::open(array('name'=>'searchForm3','id'=>'searchForm3','url'=>'reports/issue_by_nums', 'class'=>'form-horizontal' ,'method' => 'POST')) }}
{{ $errors->first('product') }}
{{ Form::close() }}
Issue Reports
@if (!empty($search_results)) @if(!empty(Request::post('issue_to'))) @elseif(!empty(Request::post('section'))) @elseif(!empty(Request::post('search_by')) && Request::post('search_by') =='SR') @elseif(!empty(Request::post('search_by')) && Request::post('search_by') == 'MODAL') @endif @foreach ($search_results as $data) @endforeach
Person Name : {{ Request::post('issue_to') }}
Section : {{ Request::post('section') }}
Serial No : {{ Request::post('number') }}
Model No : {{ Request::post('number') }}
# Issue To Issue Date Section Product Model No Serial No Company Remark Edit
{{ $loop->iteration }} {{ $data->issue_to }} {{ \Carbon\Carbon::parse($data->issue_date)->format('d-m-Y') }} {{ $data->section }} {{ $data->pname }} {{ $data->model_no }} {{ $data->sr_no }} {{ $data->cname }} {{ $data->remarks }} Edit
@elseif (Request::has('search'))
# Issue Date Section Issue To Product Model No Serial No Company Remark
No results found.
@endif
@endsection