public static function isOpen($week)
{
return (new static)::where('week', $week)->first();
}
namespace AppLibrary;
class Utilities {
//added new user
public static function doBeforeTask() {
// ... you business logic.
}
}
// then do this in your controller
Utilities::doBeforeTask();