public function store(Request $request)
 {
     Story::unguard();
     Story::create($request->only('title', 'story', 'published', 'location_id'));
     Story::reguard();
 }