removed tabs
added setting corrected code
This commit is contained in:
parent
0d53c5487d
commit
650d9884b0
@ -276,6 +276,14 @@ class CreateSettingsTable extends Migration
|
|||||||
'type' => 'boolean',
|
'type' => 'boolean',
|
||||||
'description' => 'Don\'t show inactive pilots in the public view',
|
'description' => 'Don\'t show inactive pilots in the public view',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
$this->addSetting('pilots.restrict_to_company', [
|
||||||
|
'name' => 'Restrict the flights to company',
|
||||||
|
'group' => 'pilots',
|
||||||
|
'value' => false,
|
||||||
|
'type' => 'boolean',
|
||||||
|
'description' => 'Restrict flights to the user\'s airline',
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -53,8 +53,10 @@ class FlightController extends Controller
|
|||||||
{
|
{
|
||||||
$where = [
|
$where = [
|
||||||
'active' => true,
|
'active' => true,
|
||||||
'airline_id' => Auth::user()->airline_id,
|
|
||||||
];
|
];
|
||||||
|
if(setting('pilots.restrict_to_company')) {
|
||||||
|
$where['airline_id'] = Auth::user()->airline_id;
|
||||||
|
}
|
||||||
|
|
||||||
// default restrictions on the flights shown. Handle search differently
|
// default restrictions on the flights shown. Handle search differently
|
||||||
if (setting('pilots.only_flights_from_current')) {
|
if (setting('pilots.only_flights_from_current')) {
|
||||||
@ -70,7 +72,6 @@ class FlightController extends Controller
|
|||||||
$flights = $this->flightRepo
|
$flights = $this->flightRepo
|
||||||
->orderBy('flight_number', 'asc')
|
->orderBy('flight_number', 'asc')
|
||||||
->orderBy('route_leg', 'asc')
|
->orderBy('route_leg', 'asc')
|
||||||
->orderBy('route_code', 'asc')
|
|
||||||
->paginate();
|
->paginate();
|
||||||
|
|
||||||
$saved_flights = Bid::where('user_id', Auth::id())
|
$saved_flights = Bid::where('user_id', Auth::id())
|
||||||
@ -113,14 +114,17 @@ class FlightController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function search(Request $request)
|
public function search(Request $request)
|
||||||
{
|
{
|
||||||
$request['airline_id'] = Auth::user()->airline_id;
|
|
||||||
|
|
||||||
$flights = $this->flightRepo->searchCriteria($request)
|
$flights = $this->flightRepo->searchCriteria($request)
|
||||||
->orderBy('flight_number', 'asc')
|
->orderBy('flight_number', 'asc')
|
||||||
->orderBy('route_leg', 'asc')
|
->orderBy('route_leg', 'asc')
|
||||||
->orderBy('route_code', 'asc')
|
|
||||||
->paginate();
|
->paginate();
|
||||||
|
|
||||||
|
if(setting('pilots.restrict_to_company')) {
|
||||||
|
$flights = $this->flightRepo
|
||||||
|
->pushCriteria(New WhereCriteria($request, ['airline_id' => Auth::user()->airline_id]))
|
||||||
|
->paginate();
|
||||||
|
}
|
||||||
|
|
||||||
$saved_flights = Bid::where('user_id', Auth::id())
|
$saved_flights = Bid::where('user_id', Auth::id())
|
||||||
->pluck('flight_id')->toArray();
|
->pluck('flight_id')->toArray();
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
x-id="{{ $flight->id }}"
|
x-id="{{ $flight->id }}"
|
||||||
x-saved-class="btn-info"
|
x-saved-class="btn-info"
|
||||||
type="button"
|
type="button"
|
||||||
title="@lang('frontend.flights.addremovebid')"
|
title="Add/Remove Bid"
|
||||||
>
|
>
|
||||||
<i class="fas fa-map-marker"></i>
|
<i class="fas fa-map-marker"></i>
|
||||||
</button>
|
</button>
|
||||||
@ -34,14 +34,14 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-5">
|
<div class="col-sm-5">
|
||||||
{{--<table class="table-condensed"></table>--}}
|
{{--<table class="table-condensed"></table>--}}
|
||||||
<span class="title">{{ strtoupper(trans('frontend.flights.dep')) }} </span>
|
<span class="title">DEP </span>
|
||||||
{{ $flight->dpt_airport->name }}
|
{{ $flight->dpt_airport->name }}
|
||||||
(<a href="{{route('frontend.airports.show', [
|
(<a href="{{route('frontend.airports.show', [
|
||||||
'id' => $flight->dpt_airport->icao
|
'id' => $flight->dpt_airport->icao
|
||||||
])}}">{{$flight->dpt_airport->icao}}</a>)
|
])}}">{{$flight->dpt_airport->icao}}</a>)
|
||||||
@if($flight->dpt_time), {{ $flight->dpt_time }}@endif
|
@if($flight->dpt_time), {{ $flight->dpt_time }}@endif
|
||||||
<br />
|
<br />
|
||||||
<span class="title">{{ strtoupper(trans('frontend.flights.arr')) }} </span>
|
<span class="title">ARR </span>
|
||||||
{{ $flight->arr_airport->name }}
|
{{ $flight->arr_airport->name }}
|
||||||
(<a href="{{route('frontend.airports.show', [
|
(<a href="{{route('frontend.airports.show', [
|
||||||
'id' => $flight->arr_airport->icao
|
'id' => $flight->arr_airport->icao
|
||||||
@ -49,19 +49,19 @@
|
|||||||
@if($flight->arr_time), {{ $flight->arr_time }}@endif
|
@if($flight->arr_time), {{ $flight->arr_time }}@endif
|
||||||
<br />
|
<br />
|
||||||
@if($flight->distance)
|
@if($flight->distance)
|
||||||
<span class="title">{{ strtoupper(trans('frontend.global.distance')) }} </span>
|
<span class="title">DISTANCE </span>
|
||||||
{{ $flight->distance }} {{ setting('units.distance') }}
|
{{ $flight->distance }} {{ setting('units.distance') }}
|
||||||
@endif
|
@endif
|
||||||
<br />
|
<br />
|
||||||
@if($flight->level)
|
@if($flight->level)
|
||||||
<span class="title">{{ strtoupper(trans('frontend.flights.level')) }} </span>
|
<span class="title">LEVEL </span>
|
||||||
{{ $flight->level }} {{ setting('units.altitude') }}
|
{{ $flight->level }} {{ setting('units.altitude') }}
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-7">
|
<div class="col-sm-7">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<span class="title">{{ strtoupper(trans('frontend.global.route')) }} </span>
|
<span class="title">ROUTE </span>
|
||||||
{{ $flight->route }}
|
{{ $flight->route }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user