fares & aircraft fares

This commit is contained in:
Nabeel Shahzad
2017-06-10 01:50:00 -05:00
parent f4f0657cb8
commit bacc372985
7 changed files with 92 additions and 10 deletions

View 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() {
}
}