for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Domains\Equipment;
use App\SystemCategories;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Log;
class GetCategory
{
public function getCategoryData($catID)
return SystemCategories::findOrFail($catID);
}