fares & aircraft fares
This commit is contained in:
24
app/Services/PIREPService.php
Normal file
24
app/Services/PIREPService.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services;
|
||||
|
||||
use App\Repositories\AircraftRepository;
|
||||
|
||||
|
||||
class PIREPService {
|
||||
|
||||
protected $aircraft;
|
||||
|
||||
/**
|
||||
* return a PIREP model
|
||||
*/
|
||||
public function __construct(
|
||||
AircraftRepository $aircraft
|
||||
) {
|
||||
$this->aircraft = $aircraft;
|
||||
}
|
||||
|
||||
public function create() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user